﻿#dialog-overlay {

	/* set it to fill the whil screen */
	width:100%; 
	height:100%;
	
	/* transparency for different browsers */
	filter:alpha(opacity=70); 
	-moz-opacity:0.7; 
	-khtml-opacity: 0.7; 
	opacity: 0.7; 
	background:#000; 

	/* make sure it appear behind the dialog box but above everything else */
	position:absolute; 
	top:0; left:0; 
	z-index:3000; 

	/* hide it by default */
	display:none;

}

#dialog-box {
    /* css3 drop shadow */
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* css3 border radius */

    -moz-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border-radius: 5px;

    text-transform: uppercase;
    background: #fff; /* styling of the dialog box, i have a fixed dimension for this demo */ /* make sure it has the highest z-index */
    position: absolute;
    z-index: 5000;
    padding: 5px;
    margin: 0; /* hide it by default */
    display: none;
}

#dialog-box .dialog-content {
	/* style the content */
	text-align:left; 
    padding:0;
	margin:0px;
	color:#666; 
	font-family:arial;
	font-size:11px; 

}

/* extra styling */
.poupClose {
    padding: 1px 7px 3px 7px;
    display: block;
    float: right;
    margin-top: -20px;
    background-color: #FFFFFF;
    color: #333333;
    -moz-border-top-left-radius: 3px;
    -moz-border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    text-transform: uppercase;
}